home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 23
/
AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso
/
Tools
/
Text-Viewer
/
MSWordView
/
examples
/
testall.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1999-11-06
|
295 b
|
19 lines
#!/bin/sh
#the idea here is test all the word docs looking for a crash
#im using this on my
#
#C.
for filename in *
do
echo filename is $filename
../mswordview $filename -o /tmp/mswv--
test=$?
rm -rf /tmp/mswv--*
echo status is $test
if [ "$test" != "0" ] ; then
exit -1
fi
done